@charset "UTF-8";

* {
    box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, abbr, address, big, em, img, q, small, strike, strong,
sub, sup, tt, var, i, dl, dt, dd, ol, ul, li, form, fieldset, label, table, caption, tbody, thead, tfoot, tr, th, td, article,
aside, canvas, details, figure, figcaption, header, footer, hgroup, menu, nav, output, section, time, mark, audio,
video, input, textarea, select, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: PingFangSC-Regular, Microsoft YaHei, Arial, "微軟正黑體", sans-serif;
    outline: none;
}

/*去除默认样式*/
ul, ol, li {
    list-style: none;
}

/*表格边框合并，边框距零*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*a链接*/
a {
    text-decoration: none;
    color: #454545;
}

a:hover {
    color: #fc4811;
}

/*图片设置*/
img {
    max-width: 100%;
    margin: auto;
    display: block;
    border: none;
}

/*字体设置*/
h1, h2, h3, h4, h5, h6, strong, b {
    font-weight: 400;
}

/*字体颜色*/
body {
    position: relative;
    font-size: 14px;
    min-height: 70px;
    color: #454545;
}

/* body *{font-weight: 100;} */

/* input的 placeholder 设置 */
input {
    font-size: 12px;
    color: #ccc;
    background: none;
}

input::-moz-placeholder {
    font-size: 12px;
    color: #CCCCCC;
}

input:-ms-input-placeholder {
    font-size: 12px;
    color: #CCCCCC;
}

input::-webkit-input-placeholder {
    font-size: 12px;
    color: #CCCCCC;
}

textarea {
    font-size: 12px;
    color: #ccc;
    resize: none;
}

textarea::-moz-placeholder {
    font-size: 12px;
    color: #CCCCCC;
}

textarea:-ms-input-placeholder {
    font-size: 12px;
    color: #CCCCCC;
}

textarea::-webkit-input-placeholder {
    font-size: 12px;
    color: #CCCCCC;
}

/* 禁止显示苹果浏览器输入框钥匙图标 */
input::-webkit-credentials-auto-fill-button {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
}

/* 自定义placeholder */
.placeholder:empty:before {
    content: attr(placeholder);
    color: #ccc;
}

.placeholder:focus:before {
    content: none;
}

/* input的 number 设置 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* 浮动 */
.fl {
    float: left;
}

.fr {
    float: right;
}

/* 清除浮动 */
.clear:after {
    content: '';
    display: block;
    clear: both;
}

/*设置文字禁止选中*/
.banChoose {
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*滚动条设置*/
/* ::-webkit-scrollbar-track-piece{background:none;}
::-webkit-scrollbar{width: 6px;height: 4px;}
::-webkit-scrollbar-thumb{background:rgba(255,255,255,.5); background-clip: padding-box; min-height:6px; border-radius: 20px;} */

/*动画*/
.animation {
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
}

/* 图标 */
/* .icon{width: 1em; height: 1em; vertical-align: -0.15em; fill: currentColor; overflow: hidden;} */

@font-face {
    font-family: 'iconfont';
    src: url('/assets/icon/iconfont.eot');
    src: url('/assets/icon/iconfont.eot?#iefix') format('embedded-opentype'),
    url('/assets/icon/iconfont.woff2') format('woff2'),
    url('/assets/icon/iconfont.woff') format('woff'),
    url('/assets/icon/iconfont.ttf') format('truetype'),
    url('/assets/icon/iconfont.svg#iconfont') format('svg');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 一行显示 */
.oneShow {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 两行显示 */
.twoShow {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 三行显示 */
.threeShow {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.p1{
	color: #999999;
}
.p2{
	color: #999999;
}
.p3{
	color: #999999;
}
.p4{
	color: #999999;
}
.name{color: #999999;}